【例子介绍】Visual C# 2008 开发的多标签浏览器(完全工程)
不是我故意定这么高的分的,这是我们小组的工作成果啊! 效果绝对好!!!
【相关图片】
【源码结构】
文件清单
└── WebBrowser
├── WebBrowser
│ ├── AboutBox.cs
│ ├── AboutBox.Designer.cs
│ ├── AboutBox.resx
│ ├── app.config
│ ├── bin
│ │ ├── Debug
│ │ │ ├── favorite
│ │ │ │ ├── Favorite.dll
│ │ │ │ └── Interop.IWshRuntimeLibrary.dll
│ │ │ ├── Favorite.dll
│ │ │ ├── html
│ │ │ │ └── start.html
│ │ │ ├── Interop.IWshRuntimeLibrary.dll
│ │ │ ├── myControl.dll
│ │ │ ├── res
│ │ │ │ └── sourcecode.txt
│ │ │ ├── update.jpg
│ │ │ ├── WebBrowser.exe
│ │ │ ├── WebBrowser.exe.config
│ │ │ ├── WebBrowser.pdb
│ │ │ ├── WebBrowser.vshost.exe
│ │ │ ├── WebBrowser.vshost.exe.config
│ │ │ └── WebBrowser.vshost.exe.manifest
│ │ └── Release
│ │ ├── favorite
│ │ │ ├── Favorite.dll
│ │ │ └── Interop.IWshRuntimeLibrary.dll
│ │ ├── Favorite.dll
│ │ ├── html
│ │ │ └── start.html
│ │ ├── Interop.IWshRuntimeLibrary.dll
│ │ ├── myControl.dll
│ │ ├── res
│ │ │ └── sourcecode.txt
│ │ ├── WebBrowser.vshost.exe.config
│ │ ├── WebBrowser.vshost.exe.manifest
│ │ ├── XLExplorer.exe
│ │ ├── XLExplorer.exe.config
│ │ ├── XLExplorer.pdb
│ │ ├── XLExplorer.vshost.exe
│ │ ├── XLExplorer.vshost.exe.config
│ │ └── XLExplorer.vshost.exe.manifest
│ ├── frmMain.cs
│ ├── frmMain.Designer.cs
│ ├── frmMain.resx
│ ├── frmSetting.cs
│ ├── frmSetting.Designer.cs
│ ├── frmSetting.resx
│ ├── Icon.ico
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── WebBrowser.AboutBox.resources
│ │ │ ├── WebBrowser.csproj.FileListAbsolute.txt
│ │ │ ├── WebBrowser.csproj.GenerateResource.Cache
│ │ │ ├── WebBrowser.exe
│ │ │ ├── WebBrowser.FormMain.resources
│ │ │ ├── WebBrowser.frmSetting.resources
│ │ │ ├── WebBrowser.pdb
│ │ │ └── WebBrowser.Properties.Resources.resources
│ │ └── Release
│ │ ├── Refactor
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── WebBrowser.AboutBox.resources
│ │ ├── WebBrowser.csproj.FileListAbsolute.txt
│ │ ├── WebBrowser.csproj.GenerateResource.Cache
│ │ ├── WebBrowser.FormMain.resources
│ │ ├── WebBrowser.frmSetting.resources
│ │ ├── WebBrowser.Properties.Resources.resources
│ │ ├── XLExplorer.exe
│ │ └── XLExplorer.pdb
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── AddLabel.png
│ │ ├── favorite.png
│ │ ├── GoBack.png
│ │ ├── GoForward.png
│ │ ├── Home.png
│ │ ├── MainIcon.ico
│ │ ├── ReFresh.png
│ │ ├── sizer.png
│ │ ├── Stop.png
│ │ └── tabicon.png
│ ├── WebBrowser.csproj
│ └── WebBrowser.csproj.user
├── WebBrowser.sln
└── WebBrowser.suo
20 directories, 79 files
评论